home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 247 / 247.d81 / e.list ect contr < prev    next >
Text File  |  2022-08-26  |  984b  |  68 lines

  1. u                            PRINT THIS
  2.  
  3.      LIST, STOP, RESTORE CONTROLS
  4.      ----------------------------
  5.  
  6.  POKE 774,0
  7.  
  8.     List line numbers only
  9.         (Normal = 26)
  10.  
  11.  POKE 775,100
  12.  
  13.     LIST performs a NEW
  14.  
  15.  POKE 775,168
  16.  
  17.     Disables LIST (Normal = 167)
  18.  
  19.  POKE 788,52
  20.  
  21.     Disables STOP (Normal = 49)
  22.  
  23.  POKE 792,193
  24.  
  25.     Disables RESTORE (Normal = 71)
  26.  
  27.  POKE 808,127
  28.  
  29.     Disables RUN (Normal = 237)
  30.  
  31.  POKE 808,234
  32.  
  33.     Disables STOP/RESTORE
  34.  
  35.  POKE 808,239
  36.  
  37.     Disables STOP
  38.  
  39.  NOTE: POKEing 808 messes up the clock
  40.  so it may cause problems with saving
  41.  and loading.  LOADSTAR prefers using
  42.  788 to disable STOP.
  43.  
  44.  POKE 816,157
  45.  
  46.     Disables LOAD (Normal = 165)
  47.  
  48.  POKE 816,32
  49.  
  50.     Enables SHIFT-RUN to load and run
  51.        a program
  52.  
  53.  POKE 818,32
  54.  
  55.     Disables SAVE (Normal = 237)
  56.  
  57.  POKE 2048,0
  58.  
  59.     Resets BASIC if you get a "syntax
  60.     error" when you do a RUN
  61.  
  62.  POKE 2049,x - Recover program lost by
  63.     NEW.
  64.       x = character count of line
  65.       tokens.  Experiment!
  66.  
  67.  
  68.  
  69.